dataviz\figure\utilities/
orientation.rs

1
2
3
4
5
6
7
/// Represents the orientation of a chart, graph, or component.
pub enum Orientation {
    /// Vertical orientation, typically used for charts where data is arranged along a vertical axis.
    Vertical,
    /// Horizontal orientation, typically used for charts where data is arranged along a horizontal axis.
    Horizontal,
}